home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xarchie-2.0.9 / sysdefs.h < prev    next >
C/C++ Source or Header  |  1995-06-18  |  517b  |  22 lines

  1. /*
  2.  * sysdefs.h : System functions that are tricky to get declared...
  3.  *
  4.  * George Ferguson, ferguson@cs.rochester.edu, 23 Apr 1993.
  5.  */
  6.  
  7. /* #include <stdlib.h> */
  8. #ifdef __STDC__
  9. extern char *malloc(unsigned ptr);
  10. extern char *calloc(unsigned nelem, unsigned size);
  11. extern int free(char *ptr);
  12. extern char *getenv(const char *str);
  13. extern void exit(int status);
  14. extern void abort(void);
  15. #else
  16. extern char *malloc(),*calloc();
  17. extern int free();
  18. extern char *getenv();
  19. extern void exit();
  20. extern void abort();
  21. #endif
  22.